home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine CD 1995 / Archive Magazine CD 1995.iso / discs / prog_disc / volume_5 / issue_10 / shared_c / c / CEx1 next >
Encoding:
Text File  |  1992-05-13  |  395 b   |  19 lines

  1. /*******************************************************************************
  2.  *
  3.  * CEx1.s
  4.  * © Simon Callan, 1992
  5.  *
  6.  * This program is intended as an example of using the Shared C Library from
  7.  * assembler.
  8.  *
  9.  ******************************************************************************/
  10.  
  11. #include <stddef.h>
  12. #include <stdio.h>
  13.  
  14. int main(void)
  15.  {
  16.  printf("hello world\n");
  17.  return 0;
  18.  }
  19.